home *** CD-ROM | disk | FTP | other *** search
/ Cisco Networkers 1998 / Cisco Networkers 1998.iso / pc / os2 / eloqdel.cmd next >
Encoding:
Text File  |  1998-01-21  |  1.4 KB  |  35 lines

  1. /*****************************/
  2. /*Delete Eloquent           */
  3. /***************************/
  4. arg ELOQ_PTH
  5. '@echo off'
  6. ELOQ_DRIVE=substr(ELOQ_PTH,1,2)
  7. /*Load up the REXX code*/
  8. call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs'
  9. call SysLoadFuncs
  10. ELOQ_PTH'ELOQOS2\pmmsgbox W;OK;Cancel;;Confirm Delete;Delete Eloquent;All Eloquent files and directories will be deleted. Click OK if this is what you want to do. Otherwise, click Cancel. \\\POS CC DEL ;'
  11. if substr(rc,1,1)=2 then exit ; else do
  12. /*Create a YES.DAT file for use during the delete operation*/
  13.    'echo Y>c:\yes.dat'
  14. /*Delete everything*/
  15.    ELOQ_DRIVE
  16.    'cd \'
  17.    'del 'ELOQ_PTH'system\vdkhome\style\*.*<c:\yes.dat>NUL'
  18.    'rd 'ELOQ_PTH'system\vdkhome\style'
  19.    'del 'ELOQ_PTH'system\vdkhome\legacy\*.*<c:\yes.dat>NUL'
  20.    'rd 'ELOQ_PTH'system\vdkhome\legacy'
  21.    'del 'ELOQ_PTH'system\vdkhome\english\*.*<c:\yes.dat>NUL'
  22.    'rd 'ELOQ_PTH'system\vdkhome\english'
  23.    'del 'ELOQ_PTH'system\vdkhome\*.*<c:\yes.dat>NUL'
  24.    'rd 'ELOQ_PTH'system\vdkhome'
  25.    'rd 'ELOQ_PTH'system'
  26.    'del 'ELOQ_PTH'player16\*.*<c:\yes.dat>NUL'
  27.    'rd 'ELOQ_PTH'player16'
  28.    'del 'ELOQ_PTH'eloqos2\*.*<c:\yes.dat>NUL'
  29.    'rd 'ELOQ_PTH'eloqos2'
  30.    if length(ELOQ_PTH)>3 then 'rd 'substr(ELOQ_PTH,1,length(ELOQ_PTH) -1)
  31.    'del c:\yes.dat>NUL'
  32.    /*Destroy the folder*/
  33.    rc=SysDestroyObject('<ELOQUENT_FLDR>')
  34. end
  35.